home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 7
/
Aminet 7 - August 1995.iso
/
Aminet
/
gfx
/
board
/
Prod.lha
/
Prod.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-04-20
|
608b
|
32 lines
/* Prod 1.0 -- by Thomas Wenzel -- public domain */
/* It's really nothing special at all, why should it? :-) */
#include <graphics/displayinfo.h>
#include <intuition/screens.h>
#include <utility/tagitem.h>
#include <proto/intuition.h>
int main(void) {
char version[]="$VER: Prod 1.0 (20.04.95)";
struct TagItem ScreenTags[] = {
SA_Left, 0,
SA_Top, 0,
SA_Width, 640,
SA_Height, 400,
SA_Behind, FALSE,
SA_DisplayID, VGAPRODUCT_KEY,
TAG_DONE
};
struct Screen *MyScreen;
MyScreen=OpenScreenTagList(0,ScreenTags);
if (MyScreen) CloseScreen(MyScreen);
return(0);
}